VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging.FormsProcessing.FormRecognition Namespace / FormFieldTable<TCellTemplate,TRecognizedField> Class / Item Property
Syntax Requirements SeeAlso
In This Topic
    Item Property (FormFieldTable<TCellTemplate,TRecognizedField>)
    In This Topic
    Gets the FormField at the specified row and column indices.
    Syntax
    'Declaration
    
    Public ReadOnly Default Property Item( _
    ByVal row
    The zero-based row index of the recognized field.
    As System.Int32, _
    ByVal column
    The zero-based column index of the recognized field.
    As System.Int32 _
    ) As TRecognizedField
    public TRecognizedField this[
    System.Int32 row,
    System.Int32 column
    ]{ get; }
    public: __property TRecognizedField* get_Item(
    System.Int32 row,
    System.Int32 column
    );
    public:
    property TRecognizedField^ default [System.Int32,System.Int32] { TRecognizedField^ get(System.Int32 row, System.Int32 column); }

    Parameters

    row
    The zero-based row index of the recognized field.
    column
    The zero-based column index of the recognized field.

    Return Value

    The FormField at the specified row and column indices.
    Requirements

    Target Platforms: .NET9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also